home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Solitaire / Sources / Template / TemplatePrefs.m < prev   
Text File  |  1994-01-12  |  620b  |  28 lines

  1. /* indent:4  tabsize:8  font:fixed-width */
  2.  
  3. #import "TemplatePrefs.h"
  4.  
  5. @implementation TemplatePrefs
  6.  
  7. /*---------------------------------------------------------------------------
  8. |
  9. |    - registerPrefs
  10. |
  11. |    returns: (id) self
  12. |
  13. |----------------------------------------------------------------------------
  14. |
  15. |    Register the preferences for this game.  Called automatically.
  16. |            
  17. \---------------------------------------------------------------------------*/
  18.  
  19. - registerPrefs
  20. {
  21.     /* remove this line and add your own code if your module has preferences */
  22.     [super registerPrefs];
  23.     
  24.     return self;
  25. }
  26.  
  27. @end
  28.